home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 2 - Developers' Solutions
/
Delphi 2 Developers' Solutions.iso
/
dds
/
chap08
/
howto06
/
delphi10
/
mtrans
/
mtproj.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-02-09
|
206 b
|
13 lines
program Mtproj;
uses
Forms,
Mtform in 'MTFORM.PAS' {MultiTransactionForm};
{$R *.RES}
begin
Application.CreateForm(TMultiTransactionForm, MultiTransactionForm);
Application.Run;
end.